home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Python / thread_foobar.h < prev    next >
Text File  |  1995-12-21  |  4KB  |  155 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /*
  26.  * Initialization.
  27.  */
  28. static void _init_thread _P0()
  29. {
  30. }
  31.  
  32. /*
  33.  * Thread support.
  34.  */
  35. int start_new_thread _P2(func, void (*func) _P((void *)), arg, void *arg)
  36. {
  37.     int success = 0;    /* init not needed when SOLARIS_THREADS and */
  38.                 /* C_THREADS implemented properly */
  39.  
  40.     dprintf(("start_new_thread called\n"));
  41.     if (!initialized)
  42.         init_thread();
  43.     return success < 0 ? 0 : 1;
  44. }
  45.  
  46. long get_thread_ident _P0()
  47. {
  48.     if (!initialized)
  49.         init_thread();
  50. }
  51.  
  52. static void do_exit_thread _P1(no_cleanup, int no_cleanup)
  53. {
  54.     dprintf(("exit_thread called\n"));
  55.     if (!initialized)
  56.         if (no_cleanup)
  57.             _exit(0);
  58.         else
  59.             exit(0);
  60. }
  61.  
  62. void exit_thread _P0()
  63. {
  64.     do_exit_thread(0);
  65. }
  66.  
  67. void _exit_thread _P0()
  68. {
  69.     do_exit_thread(1);
  70. }
  71.  
  72. #ifndef NO_EXIT_PROG
  73. static void do_exit_prog _P2(status, int status, no_cleanup, int no_cleanup)
  74. {
  75.     dprintf(("exit_prog(%d) called\n", status));
  76.     if (!initialized)
  77.         if (no_cleanup)
  78.             _exit(status);
  79.         else
  80.             exit(status);
  81. }
  82.  
  83. void exit_prog _P1(status, int status)
  84. {
  85.     do_exit_prog(status, 0);
  86. }
  87.  
  88. void _exit_prog _P1(status, int status)
  89. {
  90.     do_exit_prog(status, 1);
  91. }
  92. #endif /* NO_EXIT_PROG */
  93.  
  94. /*
  95.  * Lock support.
  96.  */
  97. type_lock allocate_lock _P0()
  98. {
  99.  
  100.     dprintf(("allocate_lock called\n"));
  101.     if (!initialized)
  102.         init_thread();
  103.  
  104.     dprintf(("allocate_lock() -> %lx\n", (long)lock));
  105.     return (type_lock) lock;
  106. }
  107.  
  108. void free_lock _P1(lock, type_lock lock)
  109. {
  110.     dprintf(("free_lock(%lx) called\n", (long)lock));
  111. }
  112.  
  113. int acquire_lock _P2(lock, type_lock lock, waitflag, int waitflag)
  114. {
  115.     int success;
  116.  
  117.     dprintf(("acquire_lock(%lx, %d) called\n", (long)lock, waitflag));
  118.     dprintf(("acquire_lock(%lx, %d) -> %d\n", (long)lock, waitflag, success));
  119.     return success;
  120. }
  121.  
  122. void release_lock _P1(lock, type_lock lock)
  123. {
  124.     dprintf(("release_lock(%lx) called\n", (long)lock));
  125. }
  126.  
  127. /*
  128.  * Semaphore support.
  129.  */
  130. type_sema allocate_sema _P1(value, int value)
  131. {
  132.     dprintf(("allocate_sema called\n"));
  133.     if (!initialized)
  134.         init_thread();
  135.  
  136.     dprintf(("allocate_sema() -> %lx\n", (long) sema));
  137.     return (type_sema) sema;
  138. }
  139.  
  140. void free_sema _P1(sema, type_sema sema)
  141. {
  142.     dprintf(("free_sema(%lx) called\n", (long) sema));
  143. }
  144.  
  145. void down_sema _P1(sema, type_sema sema)
  146. {
  147.     dprintf(("down_sema(%lx) called\n", (long) sema));
  148.     dprintf(("down_sema(%lx) return\n", (long) sema));
  149. }
  150.  
  151. void up_sema _P1(sema, type_sema sema)
  152. {
  153.     dprintf(("up_sema(%lx)\n", (long) sema));
  154. }
  155.